home *** CD-ROM | disk | FTP | other *** search
/ SPACE 1 / SPACE - Library 1 - Volume 1.iso / telecomm / 127 / outside.str < prev    next >
Text File  |  1988-02-05  |  1KB  |  25 lines

  1.  
  2. /* This is the structure of the data passed to an outside program */
  3. struct usr {
  4. int level;               /* Users Access level */
  5. char username[16];       /* handle */
  6. char realname[18];       /* real name */
  7. char password[14];       /* users password */
  8. int numcalls;            /* number of calls user has made */
  9. int lastdate;            /* last call date same format as read from tos */
  10. int lasttime;            /* last call time same as above */
  11. int callstd;             /* calls made today */
  12. int temp2;               /* free */
  13. int minleft;             /* daily minutes left not used yet */
  14. int comtype;             /* computer type not used yet */
  15. int col;                 /* number of columns */
  16. long bytesent;           /* bytes uploaded */
  17. long byterec;            /* bytes downloaded */
  18. char tele[14];           /* users telephone # */
  19. long points;             /* number of system points */
  20. int himsgread[20];       /* high messages read in each message base */
  21. int loc;                 /* flag for entering in local mode 1 local 0 online */
  22. char free[124];          /* free */
  23. } user;
  24.  
  25.